home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / shrlk201.zip / _SETUP.1 / Test.h < prev    next >
C/C++ Source or Header  |  1997-07-22  |  2KB  |  66 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef TestH
  3. #define TestH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Menus.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. #include "nsShareLock.hpp"
  12. #include <vcl\Buttons.hpp>
  13. //---------------------------------------------------------------------------
  14. class TfrmTester : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TMainMenu *mnuMain;
  18.     TMenuItem *mnuMain_File;
  19.     TMenuItem *mnuMain_File_Exit;
  20.     TMenuItem *mnuMain_Help;
  21.     TMenuItem *mnuMain_Help_Register;
  22.     TMenuItem *mnuMain_Help_TestAbout;
  23.     TMenuItem *N1;
  24.     TMenuItem *mnuMain_Help_About;
  25.     TLabel *lblTryNumber;
  26.     TLabel *lblTryOut;
  27.     TBevel *bvlSpacer;
  28.     TLabel *lblDaysLeft;
  29.     TLabel *lblDaysLeft_Out;
  30.     TLabel *lblExpirationDate;
  31.     TLabel *lblTrialLength;
  32.     TLabel *lblGracePeriod;
  33.     TLabel *lblExpireDate_Out;
  34.     TLabel *lblTrialLength_Out;
  35.     TLabel *lblGracePeriod_Out;
  36.     TLabel *lblGraceExpire_Out;
  37.     TLabel *lblGraceExpiration;
  38.     TLabel *lblProtectionType;
  39.     TLabel *lblProtectionType_Out;
  40.     TLabel *lblProductName;
  41.     TLabel *lblProductName_Out;
  42.     TLabel *lblDLLVersion;
  43.     TLabel *lblDLLVersion_Out;
  44.     TnsShareLock *ShareLock;
  45.     TSpeedButton *sbtnStatus;
  46.     TLabel *lblStatus;
  47.     TLabel *lblStatus_Out;
  48.     void __fastcall mnuMain_Help_AboutClick(TObject *Sender);
  49.     void __fastcall FormCreate(TObject *Sender);
  50.     void __fastcall FormShow(TObject *Sender);
  51.     void __fastcall sbtnStatusClick(TObject *Sender);
  52.     void __fastcall mnuMain_Help_TestAboutClick(TObject *Sender);
  53.     void __fastcall ShareLockSuggestTerminate(int Reason);
  54.     void __fastcall mnuMain_Help_RegisterClick(TObject *Sender);
  55.     void __fastcall mnuMain_File_ExitClick(TObject *Sender);
  56.     
  57. private:    // User declarations
  58.       void __fastcall DoStatus();
  59. public:        // User declarations
  60.     __fastcall TfrmTester(TComponent* Owner);
  61. };
  62. //---------------------------------------------------------------------------
  63. extern TfrmTester *frmTester;
  64. //---------------------------------------------------------------------------
  65. #endif
  66.